home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / gcc / ixemsdk.lha / man / cat3 / rcmd.0 < prev    next >
Text File  |  1996-09-02  |  6KB  |  97 lines

  1.  
  2. RCMD(3)                    UNIX Programmer's Manual                    RCMD(3)
  3.  
  4. NNAAMMEE
  5.      rrccmmdd, rrrreessvvppoorrtt, iirruusseerrookk, rruusseerrookk - routines for returning a stream to a
  6.      remote command
  7.  
  8. SSYYNNOOPPSSIISS
  9.      ##iinncclluuddee <<uunniissttdd..hh>>
  10.  
  11.      _i_n_t
  12.      rrccmmdd(_c_h_a_r _*_*_a_h_o_s_t, _i_n_t _i_n_p_o_r_t, _c_o_n_s_t _c_h_a_r _*_l_o_c_u_s_e_r, _c_o_n_s_t _c_h_a_r _*_r_e_m_u_s_e_r,
  13.              _c_o_n_s_t _c_h_a_r _*_c_m_d, _i_n_t _*_f_d_2_p)
  14.  
  15.      _i_n_t
  16.      rrrreessvvppoorrtt(_i_n_t _*_p_o_r_t)
  17.  
  18.      _i_n_t
  19.      iirruusseerrookk(_u___l_o_n_g _r_a_d_d_r, _i_n_t _s_u_p_e_r_u_s_e_r, _c_o_n_s_t _c_h_a_r _*_r_u_s_e_r,
  20.              _c_o_n_s_t _c_h_a_r _*_l_u_s_e_r)
  21.  
  22.      _i_n_t
  23.      rruusseerrookk(_c_o_n_s_t _c_h_a_r _*_r_h_o_s_t, _i_n_t _s_u_p_e_r_u_s_e_r, _c_o_n_s_t _c_h_a_r _*_r_u_s_e_r,
  24.              _c_o_n_s_t _c_h_a_r _*_l_u_s_e_r)
  25.  
  26. DDEESSCCRRIIPPTTIIOONN
  27.      The rrccmmdd() function is used by the super-user to execute a command on a
  28.      remote machine using an authentication scheme based on reserved port num-
  29.      bers.  The rrrreessvvppoorrtt() function returns a descriptor to a socket with an
  30.      address in the privileged port space.  The iirruusseerrookk() and rruusseerrookk() func-
  31.      tions are used by servers to authenticate clients requesting service with
  32.      rrccmmdd().  All four functions are present in the same file and are used by
  33.      the rshd(8) server (among others).
  34.  
  35.      The rrccmmdd() function looks up the host _*_a_h_o_s_t using gethostbyname(3),  re-
  36.      turning -1 if the host does not exist.  Otherwise _*_a_h_o_s_t is set to the
  37.      standard name of the host and a connection is established to a server re-
  38.      siding at the well-known Internet port _i_n_p_o_r_t.
  39.  
  40.      If the connection succeeds, a socket in the Internet domain of type
  41.      SOCK_STREAM is returned to the caller, and given to the remote command as
  42.      _s_t_d_i_n and _s_t_d_o_u_t. If _f_d_2_p is non-zero, then an auxiliary channel to a
  43.      control process will be set up, and a descriptor for it will be placed in
  44.      _*_f_d_2_p. The control process will return diagnostic output from the command
  45.      (unit 2) on this channel, and will also accept bytes on this channel as
  46.      being UNIX signal numbers, to be forwarded to the process group of the
  47.      command.  If _f_d_2_p is 0, then the _s_t_d_e_r_r (unit 2 of the remote command)
  48.      will be made the same as the _s_t_d_o_u_t and no provision is made for sending
  49.      arbitrary signals to the remote process, although you may be able to get
  50.      its attention by using out-of-band data.
  51.  
  52.      The protocol is described in detail in rshd(8).
  53.  
  54.      The rrrreessvvppoorrtt() function is used to obtain a socket with a privileged ad-
  55.      dress bound to it.  This socket is suitable for use by rrccmmdd() and several
  56.      other functions.  Privileged Internet ports are those in the range 0 to
  57.      1023.  Only the super-user is allowed to bind an address of this sort to
  58.      a socket.
  59.  
  60.      The iirruusseerrookk() and rruusseerrookk() functions take a remote host's IP address or
  61.      name, respectively, two user names and a flag indicating whether the lo-
  62.      cal user's name is that of the super-user.  Then, if the user is _N_O_T the
  63.      super-user, it checks the _/_e_t_c_/_h_o_s_t_s_._e_q_u_i_v file.  If that lookup is not
  64.      done, or is unsuccessful, the _._r_h_o_s_t_s in the local user's home directory
  65.      is checked to see if the request for service is allowed.
  66.  
  67.      If this file does not exist, is not a regular file, is owned by anyone
  68.      other than the user or the super-user, or is writeable by anyone other
  69.      than the owner, the check automatically fails.  Zero is returned if the
  70.      machine name is listed in the ``_h_o_s_t_s_._e_q_u_i_v'' file, or the host and re-
  71.      mote user name are found in the ``_._r_h_o_s_t_s'' file; otherwise iirruusseerrookk()
  72.      and rruusseerrookk() return -1.  If the local domain (as obtained from
  73.      gethostname(2))  is the same as the remote domain, only the machine name
  74.      need be specified.
  75.  
  76.      If the IP address of the remote host is known, iirruusseerrookk() should be used
  77.      in preference to rruusseerrookk(), as it does not require trusting the DNS serv-
  78.      er for the remote host's domain.
  79.  
  80. DDIIAAGGNNOOSSTTIICCSS
  81.      The rrccmmdd() function returns a valid socket descriptor on success.  It re-
  82.      turns -1 on error and prints a diagnostic message on the standard error.
  83.  
  84.      The rrrreessvvppoorrtt() function returns a valid, bound socket descriptor on suc-
  85.      cess.  It returns -1 on error with the global value _e_r_r_n_o set according
  86.      to the reason for failure.  The error code EAGAIN is overloaded to mean
  87.      ``All network ports in use.''
  88.  
  89. SSEEEE AALLSSOO
  90.      rlogin(1),  rsh(1),  intro(2),  rexec(3),  rexecd(8),  rlogind(8),
  91.      rshd(8)
  92.  
  93. HHIISSTTOORRYY
  94.      These functions appeared in 4.2BSD.
  95.  
  96. 4.2 Berkeley Distribution        June 4, 1993                                2
  97.